:root {
  --primary: #4CAF50;
  --secondary: #8BC34A;
  --accent: #FFC107;
  --bg: #FAFAFA;
  --text: #333333;
  --light: #FFFFFF;
  --dark: #2E7D32;
  --darker-green: #1B5E20;
    --primary: #4CAF50;
  --secondary: #8BC34A;
  --accent: #FFC107;
  --dark-green: #2E7D32;
  --darker-green: #1B5E20;
  --light: #FFFFFF;
  --bg: #FAFAFA;
  --text: #333333;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
html,body {
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Modern Responsive Navbar */
.main-nav {
background: linear-gradient(90deg, var(--light) 0%, var(--dark-green) 100%);
box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
align-items: center;
  justify-content: space-between;
padding: 0 20px;
height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  color: var(--light);
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
  letter-spacing: 1px;
  gap: 10px;
  height: 80px;
}

.nav-logo img {
  width: 250px;
  height: auto;
  object-fit: contain;
}
.nav-toggle {
display: none;
background: none;
border: none;
color: var(--light);
font-size: 2.2rem;
cursor: pointer;
}
.nav-list {
  display: flex;
  list-style: none;
gap: 30px;
align-items: center;
}
.nav-link, .dropdown-toggle {
display: flex;
align-items: center;
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
padding: 10px 20px;
border-radius: 6px;
transition: all 0.2s;
font-size: 1.08rem;
background: none;
border: none;
cursor: pointer;
  position: relative;
}
.nav-link:hover, .dropdown-toggle:hover, .nav-link.active, .dropdown-toggle.active {
background: rgba(255,255,255,0.13);
color: var(--accent);
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.dropdown {
  position: relative;
}
.dropdown-menu {
display: none;
  position: absolute;
top: 100%;
  left: 0;
min-width: 220px;
  background: var(--darker-green);
border-radius: 10px;
box-shadow: 0 8px 32px rgba(0,0,0,0.18);
margin-top: 4px;
padding: 8px 0;
z-index: 1001;
}
.dropdown.open .dropdown-menu {
display: block;
}
.dropdown-link {
  display: block;
  color: var(--light);
  text-decoration: none;
padding: 14px 24px;
font-size: 1rem;
transition: all 0.2s;
  border-left: 3px solid transparent;
}
.dropdown-link:hover {
background: rgba(255,255,255,0.13);
  border-left: 3px solid var(--accent);
color: var(--accent);
padding-left: 30px;
}
@media (max-width: 992px) {
.nav-toggle {
display: block;
}
.nav-list {
  display: none;
flex-direction: column;
position: absolute;
top: 80px;
left: 0;
width: 100%;
background: var(--darker-green);
box-shadow: 0 8px 32px rgba(0,0,0,0.18);
border-radius: 0 0 18px 18px;
padding: 30px 0 20px 0;
z-index: 999;
animation: slideDown 0.3s cubic-bezier(.4,2,.6,1) forwards;
gap: 0;
}
.nav-list.active {
display: flex;
}
.nav-link, .dropdown-toggle {
width: 100%;
text-align: center;
padding: 16px 0;
font-size: 1.1rem;
}
.dropdown-menu {
position: static;
min-width: 100%;
box-shadow: none;
border-radius: 0 0 18px 18px;
margin-top: 0;
padding: 0;
}
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}


header {
  text-align: center;
  padding: 40px 0;
  position: relative;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

h1:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 2px;
}

.subtitle {
  font-size: 1.5rem;
  margin: 30px 0;
  color: #7f8c8d;
  font-weight: 300;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 30px 0;
}

@media (max-width: 900px) {
  .contact-container {
      grid-template-columns: 1fr;
  }
}

.contact-info {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #3498db;
  position: relative;
  padding-bottom: 10px;
}

.contact-info h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, transparent);
}

.info-item {
  margin-bottom: 25px;
  padding-left: 35px;
  position: relative;
}

.info-item i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1.4rem;
  color: #3498db;
}

.info-item h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #2c3e50;
}

.info-item p {
  font-size: 1.1rem;
  color: #7f8c8d;
}

.phone-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.phone-number {
  background: #e8f4fc;
  padding: 8px 15px;
  border-radius: 30px;
  transition: all 0.3s ease;
  color: #2980b9;
  font-weight: 500;
  text-decoration: none;
}

.phone-number:hover {
  background: #d1e9fa;
  transform: translateY(-3px);
  cursor: pointer;
}

.contact-form {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #3498db;
  position: relative;
  padding-bottom: 10px;
}

.contact-form h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, transparent);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 500;
}

.form-control {
  width: 96%;
  padding: 14px;
  border: 1px solid #e0e0e0;
  background: #f8f9fa;
  border-radius: 8px;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #3498db;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn {
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  background: linear-gradient(135deg, #2980b9, #27ae60);
}

.map-container {
  margin-top: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.success-message {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid #2ecc71;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  display: none;
  color: #27ae60;
  font-weight: 500;
}

@media (max-width: 768px) {
  h1 {
      font-size: 2.5rem;
  }
  
  .subtitle {
      font-size: 1.2rem;
  }
  
  .contact-info, .contact-form {
      padding: 20px;
  }
  
  .info-item {
      padding-left: 30px;
  }
}
.error-message {
  color: #ff4d4d;
  font-size: 0.9rem;
  margin-top: 5px;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-header {
  background: linear-gradient(rgba(255, 255, 255, 0.9), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80'));
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-header h1 {
  margin-bottom: 20px;
}

.contact-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #555;
}
        /* Footer */
        footer {
          background: #111;
          position: relative;
          width: 100%;
        }
        
        .footer-content {
          display: flex;
          flex-wrap: wrap;
          padding: 30px 0;
          max-width: 1200px;
          margin: 0 auto;
        }
        
        .footer-section {
          flex: 1;
          min-width: 300px;
          padding: 20px;
        }
        
        .footer-section h2 {
          font-size: 1.125rem;
          font-weight: 600;
          text-transform: uppercase;
          color: #fff;
          margin-bottom: 20px;
          position: relative;
        }
        
        .footer-section h2::after {
          content: '';
          position: absolute;
          bottom: -8px;
          left: 0;
          height: 2px;
          width: 40px;
          background: var(--accent);
        }
        
        .footer-about p {
          color: #d9d9d9;
          text-align: justify;
          line-height: 1.6;
        }
        
        .footer-links {
          margin-top: 20px;
        }
        
        .footer-links a {
          display: inline-block;
          margin-right: 15px;
          color: #d9d9d9;
          text-decoration: none;
          font-size: 1.2rem;
          transition: all 0.3s;
        }
        
        .footer-links a:hover {
          color: var(--accent);
        }
        
        .footer-contact .contact-item {
          display: flex;
          align-items: flex-start;
          margin-bottom: 20px;
        }
        
        .contact-icon {
          font-size: 1.2rem;
          background: #1a1a1a;
          height: 45px;
          width: 45px;
          line-height: 45px;
          text-align: center;
          border-radius: 50%;
          margin-right: 15px;
          color: var(--accent);
        }
        
        .contact-text {
          color: #d9d9d9;
          font-size: 1rem;
        }
        
        .footer-links-list {
          list-style: none;
          padding: 0;
        }
        
        .footer-links-list li {
          margin-bottom: 10px;
        }
        
        .footer-links-list a {
          color: #d9d9d9;
          text-decoration: none;
          transition: all 0.3s;
          display: flex;
          align-items: center;
        }
        
        .footer-links-list a:hover {
          color: var(--accent);
          padding-left: 5px;
        }
        
        .footer-links-list i {
          margin-right: 10px;
          color: var(--accent);
        }
        
        .footer-bottom {
          background: #151515;
          padding: 15px 0;
          text-align: center;
        }
        
        .footer-bottom p {
          color: #656565;
          font-size: 0.9rem;
        }
        
        .footer-bottom a {
          color: var(--accent);
          text-decoration: none;
        }
        
        .footer-bottom a:hover {
          text-decoration: underline;
        }